0e66c1c8af3f0b2fdd5788e052ed95239b024a92,phoneGap/src/com/github/masahirosuzuka/PhoneGapIntelliJPlugin/runner/PhoneGapRunProfileState.java,PhoneGapRunProfileState,startProcess,#,41
Before Change
return KillableColoredProcessHandler.create(commandLine);
}
else { // Android or iOS
GeneralCommandLine commandLine = new GeneralCommandLine(
phoneGapRunConfiguration.getExecutable(),
phoneGapRunConfiguration.getCommand(),
phoneGapRunConfiguration.getPlatform());
// Change working dir to project dir
commandLine.setWorkDirectory(projectDir);
After Change
return runRipple(projectDir);
}
else {
String executable = phoneGapRunConfiguration.getExecutable();
assert executable != null;
PhoneGapCommandLine line = new PhoneGapCommandLine(executable, project.getBasePath());
String command = phoneGapRunConfiguration.getCommand();